使用queue做比對,如果queue為空表示比對完成
class Solution {
public:
bool isSubsequence(string s, string t) {
queue<char> str;
for(char i : s){
str.push(i);
}
for(int i : t){
if(i == str.front()){
str.pop();
}
}
return str.empty();
}
};